home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-ALPH.{_4 / CACHE.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  367b  |  14 lines

  1. /*
  2.  * include/asm-alpha/cache.h
  3.  */
  4. #ifndef __ARCH_ALPHA_CACHE_H
  5. #define __ARCH_ALPHA_CACHE_H
  6.  
  7. /* Bytes per L1 (data) cache line.  Both EV4 and EV5 are write-through,
  8.    read-allocate, direct-mapped, physical. */
  9. #define L1_CACHE_BYTES     32
  10. #define L1_CACHE_ALIGN(x)  (((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1))
  11. #define SMP_CACHE_BYTES    L1_CACHE_BYTES
  12.  
  13. #endif
  14.